bindings: Fix stray semicolons in CSS example for bindings
authorMichael Wood <michael.g.wood@intel.com>
Mon, 25 Nov 2013 15:59:41 +0000 (15:59 +0000)
committerMichael Wood <michael.g.wood@intel.com>
Tue, 26 Nov 2013 12:26:46 +0000 (12:26 +0000)
Semicolon shouldn't be at the end of binding set

gtk/gtkbindings.c

index 3c1ab7dde1abe059ddc4265c6f1a536f75550793..c8a2a2d6af6636c55645894308ee497d822edf9c 100644 (file)
  * {
  *   bind "&lt;Control&gt;Right" { "move-cursor" (visual-positions, 3, 0) };
  *   bind "&lt;Control&gt;Left" { "move-cursor" (visual-positions, -3, 0) };
- * };
+ * }
  * GtkEntry
  * {
- *   gtk-key-bindings: MoveCursor3
+ *   gtk-key-bindings: MoveCursor3;
  * }
  * </programlisting></informalexample>
  * </para>
  * {
  *   bind "&lt;Control&gt;Right" {  };
  *   bind "&lt;Control&gt;Left" {  };
- * };
+ * }
  * GtkEntry
  * {
- *   gtk-key-bindings: MoveCursor3
+ *   gtk-key-bindings: MoveCursor3;
  * }
  * </programlisting></informalexample>
  * The above example will not have the desired effect of causing
  * {
  *   unbind "&lt;Control&gt;Right";
  *   unbind "&lt;Control&gt;Left";
- * };
+ * }
  * GtkEntry
  * {
- *   gtk-key-bindings: MoveCursor3
+ *   gtk-key-bindings: MoveCursor3;
  * }
  * </programlisting></informalexample>
  * Now, GTK+ will find a match when looking up "&lt;Control&gt;Right"